fuel <- read.csv("../../../../data/qld_fuel.csv")QLD fuel
R
25Winter
data: qld_fuel.csv
Import data
Install packages
library(dplyr)
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
library(ggplot2)Fuel Sites
See @weschke_nighttime_2024 for more details
fuel %>% ggplot(aes(x = Site_Latitude, y = Site_Longitude)) + geom_jitter(aes(colour = Fuel_Type))
@ferretti_ecological_2024